home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / util1 / yk211src.lha / Yak_2.11_Src / Include / Code.h next >
C/C++ Source or Header  |  1995-10-18  |  581b  |  33 lines

  1. #ifndef CODE_H
  2. #define CODE_H
  3.  
  4.  
  5. /* Compiler specific stuff */
  6.  
  7. #ifdef _DCC             /* DICE */
  8.  
  9. #  define __AMIGADATE__ "("__COMMODORE_DATE__")"
  10.  
  11. #  define ASM
  12. #  define SAVEDS       __geta4 
  13. #  define STACKARGS    __stkargs
  14. #  define WBMsg        _WBMsg
  15. #  define REG(x)       __ ## x
  16.   
  17. #  define MAIN         _main
  18.  
  19. #else                           /* SAS */
  20.  
  21. #  define ASM          __asm
  22. #  define SAVEDS       __saveds
  23. #  define STACKARGS    __stdargs
  24. #  define WBMsg        _WBenchMsg
  25. #  define REG(x)       register __ ## x
  26.  
  27. #  define MAIN         __main
  28.  
  29. #endif
  30.  
  31.  
  32. #endif
  33.